/* ============================================================
   ZONAS (SCROLL HORIZONTAL) - CORRIGIDO
   ============================================================ */
.zonas-scroll-container {
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.zonas-scroll-container::-webkit-scrollbar {
    height: 8px;
}
.zonas-scroll-container::-webkit-scrollbar-track {
    background: #0a0f18;
    border-radius: 10px;
}
.zonas-scroll-container::-webkit-scrollbar-thumb {
    background: #ffaa33;
    border-radius: 10px;
}

.zonas-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: flex-start;
    overflow: visible;  /* ← ADICIONADO */
}

.zona-card {
    position: relative;
    background: rgba(10, 15, 24, 0.85);
    border: 1px solid #2a4a6a;
    border-radius: 12px;
    padding: 15px 15px 20px 15px;  /* ← 30px mudou para 15px */
    transition: margin-top 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    overflow: visible;  /* ← ADICIONADO */
}

.zona-titulo {
    position: relative;
    top: 0;
    left: 0;
    background: #0a0f18;
    padding: 8px 16px;
    margin-bottom: 15px;
    z-index: 10;
    color: #ffaa33;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
    border-radius: 20px;
    border: 1px solid #ffaa33;
    display: inline-block;
    width: auto;
    white-space: normal;
    word-break: keep-all;
}

.zona-conteudo {
    position: relative;
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    background: transparent;
    overflow: visible;  /* ← ADICIONADO */
}